Login     Sign up
how to stop spamers
jasp (@jasp)
Join date: Nov 16th 2010
Community posts: 3
View Profile
Send Message

How do you stop spammers?

I get tons of signups on my site and have to delete all of them.

is there a way to disable signups

159 months ago
ROBERT MILLAR (@millarmr)
Join date: Mar 5th 2011
Community posts: 46
View Profile
Send Message

if you have v5 you have an option in your admin settings to have people verify your email . I found alot of them used dud emails

159 months ago
weh team (@friendsunity)
Join date: Apr 18th 2010
Community posts: 67
View Profile
Send Message

ya i have v5 ,but there also spamers comes ,Eg in mail id ***@163.com like this , how can we give more against to spammers?

159 months ago
Håvard Rylandsholm (@haavard)
Join date: Sep 24th 2010
Community posts: 51
View Profile
Send Message

Here is some thing, i am going to try this.

But dont know if it´s working

http://jcowmaster.net/forums/viewthread/553

159 months ago
jasp (@jasp)
Join date: Nov 16th 2010
Community posts: 3
View Profile
Send Message

I can't view that thread. Is there a way to turn registration off!

the spam makes the program unusable.

159 months ago
Philip Rees (@piprees)
Join date: Dec 8th 2010
Community posts: 98
View Profile
Send Message

All the registrations from spammers im getting are from gmail

158 months ago
Fixme Radian (@fixme)
Join date: Nov 8th 2010
Community posts: 9
View Profile
Send Message

go to member.module.php
function signup
find this code

[code]
if (!$resp->is_valid) {
$captchaerror = $resp->error;
$errors[] = t('Wrong Verification code');
}
[/code]

put this code after that
[code]
if (!$_POST['security_question'] || $_POST['security_question'] != 'PUT UR ANSWER HERE' ) {
$errors[] = t('You must answer security question correctly!');
}
[/code]
change this in the code PUT UR ANSWER HERE with your answer

find this code

[code]
<tr class="row1">
<td>'.t('Image verification').'</td><td>
'.recaptcha_get_html($captcha['publickey'],$captchaerror).'
</td>
</tr>
[/code]

put this code after that

[code]
<tr class="row1">
<td>'.t('Security Question:').'</td>
<td>PUT HERE YOUR QUESTION?

<input type="text" name="security_question"/>
</td>
</tr>
[/code]

change this in the code PUT HERE YOUR QUESTION?

This is for the free version
i do not know if this work on other versions
credit to
[url]http://jcowmaster.net/forums/viewthread/553[/url]

158 months ago